-
-
Notifications
You must be signed in to change notification settings - Fork 128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate from WatchKit storyboard to SwiftUI and its lifecycle #739
Conversation
Signed-off-by: Tim Bert <[email protected]>
saveTrustedCertificate() writes with PropertyListEncoder instead of NSKeyedArchiver loadTrustedCertificates() attempts first decoding with PropertyListDecoder() if error is thrown it unarchives with NSKeyedUnarchiver() Signed-off-by: Tim Bert <[email protected]>
Signed-off-by: Dan Cunningham <[email protected]> Signed-off-by: Tim Bert <[email protected]>
…ge from closure to function (in the past this allowed reuse code for challenge responses between Kingfisher and Alamofire libraries), simplified their signature as the first two parameters were ignored, avoids useless initializers for URLSession and URLSessionDataTask (#736) Signed-off-by: Dan Cunningham <[email protected]> Co-authored-by: Dan Cunningham <[email protected]> Signed-off-by: Tim Bert <[email protected]>
* Migrate onReceiveSessionTaskChallenge and onReceiveSessionTaskChallenge from closure to function (in the past this allowed reuse code for challenge responses between Kingfisher and Alamofire libraries), simplified their signature as the first two parameters were ignored, avoids useless initializers for URLSession and URLSessionDataTask * Fix for keyWindow deprecation warning --------- Signed-off-by: Dan Cunningham <[email protected]> Co-authored-by: Dan Cunningham <[email protected]> Signed-off-by: Tim Bert <[email protected]>
) Signed-off-by: Tim Bert <[email protected]>
…mpler https://www.swiftbysundell.com/tips/optional-swiftui-views/ Signed-off-by: Tim Müller-Seydlitz <[email protected]> Signed-off-by: Tim Bert <[email protected]>
Signed-off-by: Tim Bert <[email protected]>
Signed-off-by: Tim Bert <[email protected]>
…able from Swift 5.7 Switched from ScrollView to List FrameRow without background Hide .placeholder icon Signed-off-by: Tim Bert <[email protected]>
Cool! is this ready for review or are you still working on it? |
Am still working on it. The sitemap is hard wired. This should be changed. |
…ot be uicomponents_watch Reverted to previous Endpoint definition /
Also considers #722 - allowing to set the sitemap path to, for instance, uicomponents_watch |
Signed-off-by: Tim Bert <[email protected]>
Signed-off-by: Tim Bert <[email protected]>
…atch Signed-off-by: Tim Müller-Seydlitz <[email protected]>
Modified .gitignore
Signed-off-by: Tim Bert <[email protected]>
Migration to #Preview Migration to 2020 API for OSLog
Signed-off-by: Tim Bert <[email protected]>
Signed-off-by: Tim Bert <[email protected]>
Signed-off-by: Dan Cunningham <[email protected]>
…ttings. Signed-off-by: Dan Cunningham <[email protected]>
…p for watch Sync Preferences to sitemap for watch in DrawerView Signed-off-by: Tim Bert <[email protected]>
This looks good to me ! I say merge when ready ! |
Cool! When can we expect an update in Testflight? |
Should not be very long |
We miss some instructions here. Please do the following
|
Let's continue this discussion on #800. |
Get rid of a build warning that WatchKit storyboards are deprecated as of watchOS 7.0.
Addresses #738 and #748